home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ed.postinst < prev    next >
Text File  |  2009-07-20  |  442b  |  17 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.        configure|abort-upgrade|abort-remove|abort-deconfigure)
  7.            update-alternatives --quiet --install /usr/bin/editor editor /bin/ed -100 \
  8.           --slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/ed.1.gz
  9.                ;;
  10. esac
  11. # Automatically added by dh_installinfo
  12. if [ "$1" = "configure" ]; then
  13.     install-info --quiet /usr/share/info/ed.info
  14. fi
  15. # End automatically added section
  16.  
  17.